crypto/tls.certificateMsgTLS13.certificate (field)

13 uses

	crypto/tls (current package)
		handshake_client_tls13.go#L657: 	if len(certMsg.certificate.Certificate) == 0 {
		handshake_client_tls13.go#L662: 	c.scts = certMsg.certificate.SignedCertificateTimestamps
		handshake_client_tls13.go#L663: 	c.ocspResponse = certMsg.certificate.OCSPStaple
		handshake_client_tls13.go#L665: 	if err := c.verifyServerCertificate(certMsg.certificate.Certificate); err != nil {
		handshake_client_tls13.go#L787: 	certMsg.certificate = *cert
		handshake_messages.go#L1437: 	certificate  Certificate
		handshake_messages.go#L1448: 		certificate := m.certificate
		handshake_messages.go#L1505: 		!unmarshalCertificate(&s, &m.certificate) ||
		handshake_messages.go#L1510: 	m.scts = m.certificate.SignedCertificateTimestamps != nil
		handshake_messages.go#L1511: 	m.ocspStapling = m.certificate.OCSPStaple != nil
		handshake_server_tls13.go#L732: 	certMsg.certificate = *hs.cert
		handshake_server_tls13.go#L953: 	if err := c.processCertsFromClient(certMsg.certificate); err != nil {
		handshake_server_tls13.go#L964: 	if len(certMsg.certificate.Certificate) != 0 {